]> git.llucax.com Git - z.facultad/75.40/2do-cuat/material.git/blob - docs/Quadratic hashing insertion.htm
Import inicial después del "/var incident". :(
[z.facultad/75.40/2do-cuat/material.git] / docs / Quadratic hashing insertion.htm
1 <HEAD>
2 <TITLE>Quadratic hashing: insertion
3 </TITLE>
4 <BODY>
5 <H2>
6 <H3>
7 <A HREF="../../images/handbook.gif"><IMG SRC="../../images/handbook2.gif" align=left></A>
8 <A HREF="../../hbook.html">
9 <IMG SRC="../../images/home_g.gif" hspace = 15 vspace = 4></A><BR>
10 <A HREF="../../expand.html">
11 <IMG SRC="../../images/contents_g.gif" hspace = 15 vspace = 4></A><BR>
12 <A HREF="../../search_a.html">
13 <IMG SRC="../../images/chapter_g.gif" hspace = 15 vspace = 4></A><BR>
14 <A HREF="311.ins.c.html"><IMG SRC="../../images/prevalg_g.gif" hspace = 15 vspace = 4></A><BR>
15 <A HREF="311c.srch.c.html">
16 <IMG SRC="../../images/nextalg_g.gif" hspace = 15 vspace = 4></A><BR>
17 <BR></H2>
18 <HR>
19 <H2><B>Quadratic hashing: insertion
20 </B></H2><BR>
21 <CENTER>
22 <TABLE BORDER>
23 <TR>
24 <TD COLSPAN = 1>
25 <TD rowspan = 1>
26 <TR><TD>
27 <XMP>
28      procedure insert( key : typekey; var r : dataarray );
29      var i, inc : integer;
30
31      begin
32      i := hashfunction( key );
33      inc := 0;
34      while (inc<m) and (not empty(r[i])) and
35           (not deleted(r[i]))  and (r[i].k<>key) do begin
36                i := (i+inc+1) mod m;
37                inc := inc + 2;
38                end;
39      if empty(r[i]) or deleted(r[i]) then
40                begin
41                {*** insert here ***}
42                r[i].k := key;
43                n := n+1
44                end
45      else Error {*** table full, or key already in table ***};
46      end;
47 </XMP></TD></TR></TABLE>
48 <BR>
49 <H3><A HREF="ftp://sunsite.dcc.uchile.cl/pub/users/rbaeza/handbook/algs/3/336.ins.p"><IMG SRC="../../images/ftp.xbm" hspace=10>Pascal</A> source (336.ins.p)  </H3></CENTER>
50 <HR><H4>
51 <IMG SRC="../../images/aw3.gif" align=left><H5><BR>
52 &copy <A HREF="http://aw.com">Addison-Wesley </A>Publishing Co. Inc.
53 </H5></H4><HR>
54 </BODY>